home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
rjs.lha
/
RJS
/
KernelVar
/
tests
/
boottime.C
next >
Wrap
C/C++ Source or Header
|
1991-06-14
|
211b
|
18 lines
#include <stdio.h>
#include <time.h>
#include "RJS/KernelVar.h"
main(int argc,char **argv)
{
KernelVar kernel;
struct timeval boot;
kernel.boottime(boot);
printf("%s\n",ctime((long*)&boot.tv_sec));
}